Creator H5 如何实现复制文字到剪贴板 您所在的位置:网站首页 js复制到剪贴板 兼容手机 Creator H5 如何实现复制文字到剪贴板

Creator H5 如何实现复制文字到剪贴板

#Creator H5 如何实现复制文字到剪贴板| 来源: 网络整理| 查看: 265

copyToClipBoard(str) { if (cc.sys.isNative) { //原生自己实现 } else if (cc.sys.isBrowser) { var textArea = document.getElementById(“clipBoard”); if (textArea === null) { textArea = document.createElement(“textarea”); textArea.id = “clipBoard”; textArea.textContent = str; document.body.appendChild(textArea); } textArea.select(); try { const msg = document.execCommand(‘copy’) ? ‘successful’ : ‘unsuccessful’; cc.log(“已经复制到剪贴板”); document.body.removeChild(textArea); } catch (err) { cc.log(“复制到剪贴板失败”); } } }



【本文地址】

公司简介

联系我们

今日新闻

    推荐新闻

    专题文章
      CopyRight 2018-2019 实验室设备网 版权所有